home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / OUTPUT.PAK / OUTPUT.RC < prev    next >
Text File  |  1997-05-06  |  2KB  |  65 lines

  1. #include "resource.h"
  2.  
  3. #if !defined (WORKSHOP_INVOKED)
  4. #include <windows.h>
  5. #endif
  6.  
  7. #include "globals.h"
  8.  
  9. IDI_APPICON             ICON    DISCARDABLE     "OUTPUT.ICO"
  10.  
  11. OUTPUT MENU DISCARDABLE 
  12. BEGIN
  13.     POPUP "&File"
  14.     BEGIN
  15.         MENUITEM "E&xit",                       IDM_EXIT
  16.     END
  17. END
  18.  
  19. OUTPUT ACCELERATORS MOVEABLE PURE 
  20. BEGIN
  21.     "Q",            IDM_EXIT,               VIRTKEY, CONTROL
  22. END
  23.  
  24. VS_VERSION_INFO VERSIONINFO
  25.  FILEVERSION 4,0,0,0
  26.  PRODUCTVERSION 4,0,0,0
  27.  FILEFLAGSMASK 0x3fL
  28. #ifdef _DEBUG
  29.  FILEFLAGS 0xbL
  30. #else
  31.  FILEFLAGS 0xaL
  32. #endif
  33.  FILEOS 0x10001L
  34.  FILETYPE 0x1L
  35.  FILESUBTYPE 0x0L
  36. BEGIN
  37.     BLOCK "StringFileInfo"
  38.     BEGIN
  39.         BLOCK "040904e4"
  40.         BEGIN
  41.             VALUE "CompanyName", "Microsoft Corporation\0"
  42.             VALUE "FileDescription", "Output Example Application\0"
  43.             VALUE "FileVersion", "Version 4.0\0"
  44.             VALUE "InternalName", "Output\0"
  45.             VALUE "LegalCopyright", "Copyright \251 Microsoft Corp. 1990-1995\0"
  46.             VALUE "LegalTrademarks", "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation\0"
  47.             VALUE "OriginalFilename", "\0"
  48.             VALUE "ProductName", "Output\0"
  49.             VALUE "ProductVersion", "\0"
  50.             VALUE "ProductVersion", "Version 4.0\0"
  51.         END
  52.     END
  53.     BLOCK "VarFileInfo"
  54.     BEGIN
  55.         VALUE "Translation", 0x409, 1252
  56.     END
  57. END
  58.  
  59. STRINGTABLE DISCARDABLE 
  60. BEGIN
  61.     IDS_APPNAME             "Output"
  62.     IDS_DESCRIPTION         "Output Example Application"
  63. END
  64.  
  65.